<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes"/>
<xsl:template match="/">
<HTML>
<BODY>
<xsl:call-template name="prvnich"/>
</BODY>
</HTML>
</xsl:template>
<xsl:template name="prvnich">
<B><U>Prvních pět písmen abecedy : </U></B>
<OL>
<xsl:for-each select="abeceda/*[position() <6]">
<LI>
<xsl:value-of select="."/>
</LI>
</xsl:for-each>
</OL>
</xsl:template>
</xsl:stylesheet>